home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / code / chap1 / Parent.java < prev   
Encoding:
Java Source  |  1997-04-19  |  285 b   |  13 lines

  1. class Parent {
  2.    public static void main(String[] args) {
  3.        Derived1 d1 = new Derived1();
  4.        Derived2 d2 = new Derived2();
  5.        Parent p = Parent();
  6.        // weíll add code here. . .
  7.    }
  8. }
  9.  
  10. class Derived1 extends Parent { }
  11.  
  12. class Derived2 extends Parent { }
  13.